home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / manage / condor / Condor_4.1.3b / src / h / clib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-23  |  2.1 KB  |  81 lines

  1. /* 
  2. ** Copyright 1986, 1987, 1988, 1989, 1990, 1991 by the Condor Design Team
  3. ** 
  4. ** Permission to use, copy, modify, and distribute this software and its
  5. ** documentation for any purpose and without fee is hereby granted,
  6. ** provided that the above copyright notice appear in all copies and that
  7. ** both that copyright notice and this permission notice appear in
  8. ** supporting documentation, and that the names of the University of
  9. ** Wisconsin and the Condor Design Team not be used in advertising or
  10. ** publicity pertaining to distribution of the software without specific,
  11. ** written prior permission.  The University of Wisconsin and the Condor
  12. ** Design Team make no representations about the suitability of this
  13. ** software for any purpose.  It is provided "as is" without express
  14. ** or implied warranty.
  15. ** 
  16. ** THE UNIVERSITY OF WISCONSIN AND THE CONDOR DESIGN TEAM DISCLAIM ALL
  17. ** WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  18. ** OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE UNIVERSITY OF
  19. ** WISCONSIN OR THE CONDOR DESIGN TEAM BE LIABLE FOR ANY SPECIAL, INDIRECT
  20. ** OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  21. ** OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  22. ** OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  23. ** OR PERFORMANCE OF THIS SOFTWARE.
  24. ** 
  25. ** Authors:  Allan Bricker and Michael J. Litzkow,
  26. **              University of Wisconsin, Computer Sciences Dept.
  27. ** 
  28. */ 
  29.  
  30. #include <sys/types.h>
  31.  
  32.  
  33. #if defined(AIX31)
  34. #include <string.h>
  35. #endif
  36.  
  37. #if defined(IRIX331)
  38. void    *calloc();
  39. char    *ctime();
  40. void    *malloc();
  41. char    *param();
  42. void    *realloc();
  43. char    *strcat();
  44. char    *strcpy();
  45. char    *strncpy();
  46. int        sprintf();
  47. #endif
  48.  
  49. #if !defined(AIX31) && !defined(IRIX331) && !defined(HPUX8)
  50. char    *calloc();
  51. char    *ctime();
  52. char    *getwd();
  53. char    *malloc();
  54. char    *param();
  55. char    *realloc();
  56. char    *strcat();
  57. char    *strcpy();
  58. char    *strncpy();
  59. char    *sprintf();
  60. #endif
  61.  
  62. #ifndef htons
  63. u_short    htons();
  64. #endif htons
  65.  
  66. #ifndef ntohs
  67. u_short    ntohs();
  68. #endif ntohs
  69.  
  70. #ifndef htonl
  71. u_long    htonl();
  72. #endif htonl
  73.  
  74. #ifndef ntohl
  75. u_long    ntohl();
  76. #endif ntohl
  77.  
  78. #ifndef time
  79. time_t    time();
  80. #endif time
  81.